home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / i386 / asm.h < prev    next >
C/C++ Source or Header  |  1994-04-26  |  2KB  |  52 lines

  1. /* asm.h -- Definitions for x86 syntax variations.
  2.  
  3. Copyright (C) 1992, 1994 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Library General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at your
  10. option) any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
  15. License for more details.
  16.  
  17. You should have received a copy of the GNU Library General Public License
  18. along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
  19. the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. #ifdef GAS_SYNTAX
  23. #define R(r) %r
  24. #define MEM(base)(base)
  25. #define MEM_DISP(base,displacement)displacement(R(base))
  26. #define MEM_INDEX(base,index,size)(R(base),R(index),size)
  27. #ifdef __STDC__
  28. #define INSN1(mnemonic,size_suffix,dst)mnemonic##size_suffix dst
  29. #define INSN2(mnemonic,size_suffix,dst,src)mnemonic##size_suffix src,dst
  30. #else
  31. #define INSN1(mnemonic,size_suffix,dst)mnemonic/**/size_suffix dst
  32. #define INSN2(mnemonic,size_suffix,dst,src)mnemonic/**/size_suffix src,dst
  33. #endif
  34. #define TEXT .text
  35. #define ALIGN .align 4
  36. #define GLOBL .globl
  37. #define LAB(label) label:
  38. #endif
  39.  
  40. #ifdef INTEL_SYNTAX
  41. #define R(r) r
  42. #define MEM(base)[base]
  43. #define MEM_DISP(base,displacement)[base+(displacement)]
  44. #define MEM_INDEX(base,index,size)[base+index*size]
  45. #define INSN1(mnemonic,size_suffix,dst)mnemonic dst
  46. #define INSN2(mnemonic,size_suffix,dst,src)mnemonic dst,src
  47. #define TEXT .text
  48. #define ALIGN .align 4
  49. #define GLOBL .globl
  50. #endif
  51.  
  52.